408a5785e12e2630ed44ed1e54a15cd8a0967d16,source/org/jasig/portal/GuestUserLayoutManager.java,GuestUserLayoutManager,processUserPreferencesParameters,#HttpServletRequest#,244

Before Change


                    root = servletPath.substring(chanIdBegIndex, chanIdEndIndex);
                }
            }
            state.complete_up.getStructureStylesheetUserPreferences().putParameterValue("userLayoutRoot", root);
        }
        // other params
        String[] sparams = req.getParameterValues("uP_sparam");

After Change


                }
            }
            if(root!=null) {
                state.complete_up.getStructureStylesheetUserPreferences().putParameterValue("userLayoutRoot", root);
            } else {
                LogService.instance().log(LogService.ERROR, "GuestUserLayoutManager::processUserPreferencesParameters() : unable to extract channel ID. servletPath=\""+req.getServletPath()+"\".");
            }